home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr10 / scrlit17.zip / SCROLLIT.DOC < prev    next >
Text File  |  1993-05-30  |  37KB  |  900 lines

  1.  
  2.  
  3.  
  4.  
  5.  
  6.  
  7.  
  8.  
  9.                                     SCROLLit
  10.  
  11.  
  12.                            Advanced ScrollBack Buffer
  13.  
  14.  
  15.  
  16.                                   Version 1.7
  17.  
  18.  
  19.  
  20.  
  21.  
  22.  
  23.  
  24.  
  25.  
  26.                                Copyright 1992-93
  27.                               All Rights Reserved
  28.  
  29.  
  30.  
  31.  
  32.  
  33.                                        By
  34.  
  35.  
  36.                           Bromfield Software Products
  37.                                  P.O. Box 70081
  38.                                 Ottawa, Ontario
  39.                                     K2P 2M3
  40.                                      Canada
  41.  
  42.  
  43.  
  44.  
  45.                              Compuserve 71054,3051
  46.  
  47.  
  48.        License
  49.  
  50.        SCROLLit  is  NOT free  software,  but  is  being distributed  as
  51.        "shareware".
  52.  
  53.        Non-registered  users  of this  software  are  granted a  limited
  54.        license to use this program for a trial period of thirty days for
  55.        the purpose  of determining  if SCROLLit  is  suitable for  their
  56.        needs.  At  the  end of  this  trial  period,  you should  either
  57.        register your copy or discontinue using SCROLLit.
  58.  
  59.        Whether or not you  register SCROLLit, we encourage you  to share
  60.        the unregistered  version of  the program  with your friends  and
  61.        colleagues and to upload it to  any BBS's you use. Please be sure
  62.        to keep all the files together; a complete list of  files appears
  63.        in README.DOC.
  64.  
  65.  
  66.  
  67.        Introduction - What is SCROLLit?
  68.  
  69.        SCROLLit is  a memory  resident (TSR)  program that captures,  in
  70.        full color,  the lines  of text  that scroll off  the top  of the
  71.        video  screen  and stores  them in  an  XMS, EMS  or conventional
  72.        memory 'scrollback' buffer  of a  size specified by  the user.  A
  73.        fast compression technique is  used to store more than  twice the
  74.        number of lines in the available buffer space. 
  75.  
  76.        SCROLLit  can  then be  activated or  'popped  up' over  any non-
  77.        graphical  program   by  pressing  the  scroll   lock  key.  Once
  78.        activated,  SCROLLit will let you  scroll back through this saved
  79.        information, line by line  or page by  page. SCROLLit has a  fast
  80.        search  capability as well  as a block-write  feature that allows
  81.        you  to mark  a block  of lines  for  writing to  a disk  file or
  82.        sending to your printer.
  83.  
  84.  
  85.  
  86.  
  87.  
  88.  
  89.  
  90.  
  91.  
  92.  
  93.  
  94.  
  95.  
  96.  
  97.  
  98.  
  99.  
  100.  
  101.  
  102.  
  103.  
  104.  
  105.  
  106.                                                                        1
  107.  
  108.  
  109.        Capturing Lines
  110.  
  111.        Once resident,  SCROLLit monitors video activity  to capture text
  112.        lines  that are scrolled off the top  of the screen. You may wish
  113.        to look  back through the  output of the  DIR command in  DOS, or
  114.        review the progress of a Bulletin Board (BBS) session while using
  115.        your communications software, for example.
  116.  
  117.        A program can  scroll the  screen in three  ways: DOS  (interrupt
  118.        21h)  function calls,  BIOS (interrupt  10h) function  calls, and
  119.        direct  writing to video memory. SCROLLit is able to capture both
  120.        DOS and BIOS scrolling, but not the scrolling performed by direct
  121.        screen writing. Fortunately, many programs that use direct screen
  122.        writing  can be configured to use BIOS function calls. Appendix 1
  123.        describes how to reconfigure two popular  communications programs
  124.        (Qmodem and  Telix) to  use  BIOS scrolling,  rather than  direct
  125.        screen writing. 
  126.  
  127.        Some programs clear the  screen rather than scrolling  old output
  128.        off  the top  of the  screen. Monitoring  DOS and  BIOS scrolling
  129.        would not capture  this output because no scrolling  is involved.
  130.        To get around this problem, SCROLLit monitors BIOS 'clear-screen'
  131.        requests.  When a  clear-screen request  has been  made, SCROLLit
  132.        copies the entire screen to the scrollback buffer before the BIOS
  133.        clears  the  screen. As  a result,  you  will find  that SCROLLit
  134.        captures more output than most other scrollback buffer utilities.
  135.  
  136.        Disable Screen Capture Temporarily 
  137.  
  138.        SCROLLit's capturing of screen scrolling and clear-screens can be
  139.        temporarily disabled by typing:
  140.  
  141.                  SCROLLit /-
  142.  
  143.        Screen capturing can later be re-enabled with the /+ command line
  144.        switch.  It may  be  useful to  disable  screen capturing  before
  145.        executing a program that  generates a lot of scrolling  or clear-
  146.        screens, but that  you do  not wish captured  in your  scrollback
  147.        buffer. WordPerfect is a good example of this. In WordPerfect, as
  148.        you page  through your document, SCROLLit  would normally capture
  149.        each page into the scrollback buffer, potentially taking up a lot
  150.        of  buffer  space.  You  may   find  it  convenient  to   execute
  151.        WordPerfect using a simple batch file as follows:
  152.  
  153.                  CD\WP51
  154.                  CLS
  155.                  SCROLLIT /-
  156.                  WP51
  157.                  SCROLLIT /+
  158.  
  159.        SCROLLit  can still be popped  up when capturing  is disabled, so
  160.        that you can still  scroll back through lines that  were captured
  161.        before screen capture was disabled.
  162.  
  163.  
  164.  
  165.  
  166.  
  167.                                                                        2
  168.  
  169.  
  170.        Compressing the scrollback buffer
  171.  
  172.        Each line that SCROLLit saves contains 80 characters and 80 color
  173.        attributes, requiring a  total of  160 bytes storage.  A full  25
  174.        line  screen  requires 4000  bytes  of  storage space.  There  is
  175.        usually a  lot of blank space on a screen, however, and the color
  176.        attributes are often  unchanged for  an entire line  of text  and
  177.        sometimes the whole screen. SCROLLit uses a very fast run-length-
  178.        encoded  compression  algorithm to  shrink  the  amount of  space
  179.        required to save a line of text and is typically able to compress
  180.        the scrollback  buffer by 60 to 70%, meaning that more than twice
  181.        the  number of  lines of  can be  saved in  the  available buffer
  182.        space.
  183.  
  184.        The  extent to  which  SCROLLit has  been  able to  compress  the
  185.        scrollback buffer is displayed when the help key (F1) is pressed.
  186.  
  187.                       ╒═════════════════════════════════╕               
  188.        For example:   │  Number of lines saved:  2046   │               
  189.                       │  Average bytes per line: 43     │               
  190.                       │  Percent compression:    73%    │               
  191.                       ╘═════════════════════════════════╛         
  192.  
  193.        There is some overhead in setting up the buffer, which means that
  194.        SCROLLit  will obtain  better  compression with  a larger  buffer
  195.        size.
  196.  
  197.  
  198.  
  199.        Installing and Unloading SCROLLit
  200.  
  201.        SCROLLit  is a memory resident (TSR) program that is installed in
  202.        memory  by typing  SCROLLit  followed by  the desired  scrollback
  203.        buffer  size in kilobytes. The buffer size  must be at least 20k.
  204.        For example, to install  SCROLLit with a 100k scrollback  buffer,
  205.        type:
  206.  
  207.                  SCROLLit 100
  208.  
  209.        You may wish  to store this command in your  autoexec.bat file to
  210.        ensure  that  SCROLLit  is  loaded  whenever  you  turn  on  your
  211.        computer. You  will need to  prefix the command with  the name of
  212.        the  directory where SCROLLit is  stored, or store  SCROLLit in a
  213.        directory that you have set in your path command.
  214.  
  215.        SCROLLit can be  unloaded from  memory with the  /U command  line
  216.        option, provided that other TSR's have not been loaded after it:
  217.  
  218.                  SCROLLit /U
  219.  
  220.        Installing  and unloading of  SCROLLit is this  simple. There are
  221.        other command line options that will be discussed throughout this
  222.        document.  A complete list of command line options is provided in
  223.        Appendix 3, and can be displayed by typing:
  224.  
  225.                  SCROLLit /?
  226.  
  227.  
  228.                                                                        3
  229.  
  230.  
  231.        Memory Usage
  232.  
  233.        The SCROLLit  program itself  takes up about  9k of  conventional
  234.        memory, while the scrollback buffer may be stored in XMS,  EMS or
  235.        conventional memory. SCROLLit will store the scrollback buffer in
  236.        XMS memory  if there  is enough XMS  memory available to  store a
  237.        buffer of  the size you  request. If  adequate XMS memory  is not
  238.        available,  SCROLLit will  store  the buffer  in  EMS memory.  If
  239.        adequate EMS  memory is  not available, then  conventional memory
  240.        will be used.
  241.  
  242.        If there is  not enough  memory of any  type available,  SCROLLit
  243.        will  produce a summary of the available memory on your computer,
  244.        so that  you  can determine  what size  of buffer  will fit.  The
  245.        amount of available memory refers to the memory available for use
  246.        by SCROLLit and is  typically less than the total  memory in your
  247.        computer because other programs may already have reserved some of
  248.        this memory for their own use.
  249.  
  250.        SCROLLit will  automatically store  the scrollback buffer  in XMS
  251.        memory  if enough is available. Under some circumstances, you may
  252.        wish  to keep this XMS  memory available for another application.
  253.        The /E command line  option tells SCROLLit to store the buffer in
  254.        EMS  memory, even if  enough XMS memory  is available. Similarly,
  255.        the /C command line option tells SCROLLit to  store the buffer in
  256.        conventional memory even if adequate XMS or EMS memory exists.
  257.  
  258.        For  example, to  install  SCROLLit with  a  160k buffer  in  EMS
  259.        memory, type:
  260.  
  261.                  SCROLLit 160 /E
  262.  
  263.        In  addition to XMS, EMS  and conventional memory,  there are two
  264.        other types of  memory that  may be available  on your  computer:
  265.        upper memory and raw extended memory.
  266.  
  267.        Upper memory refers to the memory between the top of conventional
  268.        memory  (the first  640k)  and 1024k.  The SCROLLit  program (and
  269.        buffer) can  be stored  in this  type of  memory  rather than  in
  270.        conventional memory  by using  the 'loadhigh' capability  of your
  271.        memory manager, for example the LOADHIGH command in DOS Version 5
  272.        or  the LOADHI program  in Quarterdeck's  QEMM. Storing  your TSR
  273.        programs   in  upper   memory  leaves   more  of   your  valuable
  274.        conventional memory  available for your other  programs. Refer to
  275.        your DOS  5 or memory  manager documentation for  instructions on
  276.        how to load TSR's into upper memory.
  277.  
  278.        Raw extended memory  refers to  memory above the  1024k limit  on
  279.        your  computer that has not yet been converted into usable XMS or
  280.        EMS memory by your  memory manager. If SCROLLit detects  that you
  281.        don't have  XMS or EMS  installed, but  you do have  raw extended
  282.        memory available,  the program  will  advise you  to install  the
  283.        necessary  software drivers  to convert  this memory into  a more
  284.        usable form. For example,  this memory can be converted  into XMS
  285.        memory by adding DEVICE=HIMEM.SYS to your config.sys file.
  286.  
  287.  
  288.  
  289.                                                                        4
  290.  
  291.  
  292.        Activating SCROLLit
  293.  
  294.        SCROLLit can be activated ('popped up') over any text-based (i.e.
  295.        non  graphical) application by pressing  the Scroll Lock key (the
  296.        SCROLLit 'hotkey'). If  you press  the Scroll Lock  key while  in
  297.        graphics mode, SCROLLit will beep your speaker to remind you that
  298.        it cannot be activated while you are in graphics mode. 
  299.  
  300.        There are some  circumstances where SCROLLit will  decide that it
  301.        is not appropriate  to popup  over a  text-based application  and
  302.        will beep  instead. (Technically,  SCROLLit will not  interrupt a
  303.        DOS function call, and will wait a second or so for DOS to become
  304.        available. Other TSR's  are not necessarily  so careful, and  may
  305.        interrupt  DOS. SCROLLit will therefore not popup if this type of
  306.        TSR has  already  interrupted DOS  or if  the foreground  program
  307.        keeps DOS busy for an extended period of time.)
  308.  
  309.        Once SCROLLit  is installed,  use the key  combination Alt-Scroll
  310.        Lock (press the Alt key and the Scroll Lock key at the same time)
  311.        in order to turn your Scroll Lock light on and off.
  312.  
  313.        If  you are using an  unregistered copy of  SCROLLit, a shareware
  314.        screen may  appear when  you press  the hotkey  to remind you  to
  315.        please register  your  copy of  SCROLLit.  This screen  does  not
  316.        appear on registered copies  of the program. Please refer  to the
  317.        section 'How to  Register SCROLLit'  for more details  on how  to
  318.        remove this shareware screen.
  319.  
  320.  
  321.      ╒══════════════════════ SCROLLit Version 1.7 ═══════════════════════╕
  322.      │                                                                   │
  323.      │ SCROLLit is Shareware.  Please try it for 30 days to determine    │
  324.      │ if it meets your needs.  If you continue to use the program       │
  325.      │ beyond the trial period, you are required to pay the registration │
  326.      │ fee.  For more information, type SCROLLit /R at the DOS prompt.   │
  327.      │                                                                   │
  328.      │ The registration fee is $20 CDN for Canadian residents, or        │
  329.      │                         $17 US  for U.S. and overseas addresses.  │
  330.      │                                                                   │
  331.      │         Send to:      Bromfield Software Products                 │
  332.      │                       P.O. Box 70081                              │
  333.      │                       Ottawa, Ontario  K2P 2M3                    │
  334.      │                       CANADA                                      │
  335.      │                                                                   │
  336.      │ Registration removes this screen.  Press F5 to continue.          │
  337.      │                                                                   │
  338.      ╘═════════ Copyright 1992-93 Bromfield Software Products ═══════════╛
  339.  
  340.  
  341.        Once  you have activated SCROLLit,  you can exit  by pressing the
  342.        escape (Esc) key or pressing the Scroll Lock key a second time. 
  343.  
  344.        The hotkey  can be changed  with the  /H command  line switch  as
  345.        explained  in the  section 'Customizing  SCROLLit -  Changing the
  346.        Hotkey'. 
  347.  
  348.  
  349.  
  350.                                                                        5
  351.  
  352.  
  353.        Using SCROLLit - Scrolling the scrollback buffer
  354.  
  355.        Once you have activated SCROLLit, you can scroll back through the
  356.        buffer using the standard  screen scrolling commands:   and  to
  357.        scroll line  by line,  Page Up  and Page Down  to scroll  page by
  358.        page,  and the Home and End keys to go to the beginning or end of
  359.        the scrollback buffer. The bottom line on your screen, the status
  360.        line,  will indicate  your  current position  within the  buffer.
  361.        'Line 48 of  2106' means that the  top line on the  screen is the
  362.        48th line in a buffer holding a total of 2106 lines of text.
  363.  
  364.        The Ctrl-Home key  combination can  be pressed to  return to  the
  365.        same position in the scrollback buffer  you were in when you last
  366.        exited SCROLLit. It is possible that this line has since scrolled
  367.        off the  top of the buffer, in which case, SCROLLit will beep and
  368.        place you at the top (Line 1) of the buffer.
  369.  
  370.  
  371.        Using SCROLLit - Searching the scrollback buffer
  372.  
  373.        There  are three  commands for  searching through  the scrollback
  374.        buffer for a target string. Press the letter B to search Backward
  375.        through the buffer from your current location. Press the letter F
  376.        for a Forward search from your current location. Press the letter
  377.        A  to search Again  for the  next occurrence  of the  same target
  378.        string.
  379.  
  380.        SCROLLit performs a fast,  case-insensitive search for the target
  381.        string that you provide. When SCROLLit finds an occurrence of the
  382.        target, the screen will  be repositioned to that location  in the
  383.        scrollback buffer and  the target string  will be highlighted  by
  384.        reverse video  to show you where  it was found. If  the target is
  385.        not found,  SCROLLit will beep the speaker and give you a warning
  386.        message on the status line.
  387.  
  388.  
  389.  
  390.  
  391.  
  392.  
  393.  
  394.  
  395.  
  396.  
  397.  
  398.  
  399.  
  400.  
  401.  
  402.  
  403.  
  404.  
  405.  
  406.  
  407.  
  408.  
  409.  
  410.  
  411.                                                                        6
  412.  
  413.  
  414.        Using SCROLLit - Block-writing to file or printer
  415.  
  416.        Block-writing refers to the ability  to mark a block of lines  in
  417.        the buffer and then write this block to a specified  disk file or
  418.        to  your printer.  Press the  letter W  to invoke  block-Writing.
  419.        There are  three steps  to writing  a block  of  lines: mark  the
  420.        beginning  of the  block, mark  the end  of the  block, and  then
  421.        specify the disk filename or printer for  output. If you are part
  422.        way  through these steps, you can  back up by pressing the escape
  423.        (Esc) key.
  424.  
  425.        Use the cursor keys to move to the  location of the first line in
  426.        the  block that  you  wish to  mark. The  row  is highlighted  by
  427.        reverse  video and is  marked as the  beginning of  your block by
  428.        pressing the enter key. Then the cursor keys are again used, this
  429.        time to chose the end of the block, again marked  by pressing the
  430.        enter key. Once you have pressed the enter key a second time, the
  431.        block of lines will be marked and highlighted in reverse video.
  432.  
  433.        After  marking the block of  lines, SCROLLit will  prompt you for
  434.        the  disk filename where these lines should be saved. The default
  435.        filename is SCROLL.IT in the current directory, but can easily be
  436.        changed. If a file  with that name already exists,  SCROLLit will
  437.        ask you if you wish  to overwrite this file or append  this block
  438.        of lines to the end of the file. 
  439.  
  440.        To send the block of lines to your printer type PRN rather than a
  441.        filename. (Type LPT2 to send to LPT2.)
  442.  
  443.  
  444.  
  445.  
  446.  
  447.  
  448.  
  449.  
  450.  
  451.  
  452.  
  453.  
  454.  
  455.  
  456.  
  457.  
  458.  
  459.  
  460.  
  461.  
  462.  
  463.  
  464.  
  465.  
  466.  
  467.  
  468.  
  469.  
  470.  
  471.  
  472.                                                                        7
  473.  
  474.  
  475.        Using SCROLLit - the Help screen
  476.  
  477.        The  help screen, brought up  by pressing the  F1 key, summarizes
  478.        the commands discussed in the last two pages. In addition  to the
  479.        command  summary reproduced  below,  the Help  screen includes  a
  480.        summary of the size of the  buffer and the degree of  compression
  481.        as discussed in the section 'Compressing the scrollback buffer'. 
  482.  
  483.  
  484.                  ╒═══════════════════════════════════════════╕
  485.                  │           Scroll up/down 1 line         │
  486.                  │ PgUp  PgDn  Scroll up/down 1 page         │
  487.                  │ Home  End   Go to beginning/end of buffer │
  488.                  │ F           Search forward for text       │
  489.                  │ B           Search backward for text      │
  490.                  │ A           Search again, same text       │
  491.                  │ W           Write block of text           │
  492.                  │               to file or printer          │
  493.                  │ Ctrl-Home   Return to last position       │
  494.                  │ Esc         Exit SCROLLit                 │
  495.                  ╘═══════════════════════════════════════════╛
  496.  
  497.                       ╒═════════════════════════════════╕               
  498.                       │  Number of lines saved:  2046   │               
  499.                       │  Average bytes per line: 43     │               
  500.                       │  Percent compression:    73%    │               
  501.                       ╘═════════════════════════════════╛         
  502.  
  503.  
  504.        How to register SCROLLit
  505.  
  506.        The registration  fee for  SCROLLit is $17  U.S. or  $20 CDN  for
  507.        Canadian residents. The ORDERFRM.DOC file can be  printed on your
  508.        printer as a convenient form to use for registration.
  509.  
  510.        When you register SCROLLit, you will be mailed a registration key
  511.        that  is derived  from the spelling  of your  name. Your  name is
  512.        specified with the /N command line option and the eight character
  513.        registration  key is specified  with the /K  command line option.
  514.        Installing  SCROLLit with  a  100k scrollback  buffer would  look
  515.        like:
  516.  
  517.                  SCROLLit 100 /N=John_P._Doe /K=12345abc
  518.  
  519.        Note that underscores are used  instead of spaces when specifying
  520.        your name and that both the name and the  key can be specified in
  521.        either  upper or lower  case. SCROLLit will  check to  see if the
  522.        registration  key is  valid and  correctly matches  the specified
  523.        name. If specified  correctly, SCROLLit will  no longer bring  up
  524.        the shareware screen when activated.
  525.  
  526.        Typically, you  will be installing SCROLLit  in your autoexec.bat
  527.        file, which  should be edited  to include the  /N and  /K command
  528.        line options as  illustrated above. This registration  key is for
  529.        your personal use only. Please do not reveal it to others.
  530.  
  531.  
  532.  
  533.                                                                        8
  534.  
  535.  
  536.        Customizing SCROLLit - Changing the Color Settings
  537.  
  538.        By  default, SCROLLit  uses  a color  scheme  of blue  and  white
  539.        against a cyan background. While this combination looks fine on a
  540.        color  monitor, some  users of  LCD notebooks  report that  these
  541.        color attributes lack definition  when translated into the shades
  542.        of grey that  these machines use  to represent different  colors.
  543.        SCROLLit has two  command line  switches that allow  the user  to
  544.        override the  defaults and specify  the color attributes  used in
  545.        color video mode 3 and in monochrome video mode 7.
  546.  
  547.  
  548.             /AC=a1,a2,a3,a4   Attributes used in color video mode 3.
  549.  
  550.             /AM=a1,a2,a3,a4   Attributes used in mono video mode 7.
  551.  
  552.                                       Default Values
  553.                                      ================
  554.                                      Color       Mono
  555.             a1 = Border color         30          70
  556.             a2 = Normal Text          31          70
  557.             a3 = Highlighted Text     3F          70
  558.             a4 = Text being edited    0F          0F
  559.            
  560.  
  561.        Color attributes are specified  as two digit hexidecimal numbers.
  562.        The first  digit specifies  the background  color and  the second
  563.        digit specifies the foreground color.
  564.  
  565.  
  566.             First Digit (Background)         Second Digit (Foreground)
  567.  
  568.             0 -- Black                       0 -- Black
  569.             1 -- Blue                        1 -- Blue
  570.             2 -- Green                       2 -- Green
  571.             3 -- Cyan                        3 -- Cyan
  572.             4 -- Red                         4 -- Red
  573.             5 -- Magenta                     5 -- Magenta
  574.             6 -- Brown                       6 -- Brown
  575.             7 -- Grey                        7 -- White
  576.                                              8 -- Grey
  577.                                              9 -- Intense Blue
  578.                                              A -- Intense Green
  579.                                              B -- Intense Cyan
  580.                                              C -- Intense Red
  581.                                              D -- Intense Magenta
  582.                                              E -- Intense Yellow
  583.                                              F -- Intense White
  584.  
  585.  
  586.        These commands can  be used  to set the  color attributes  during
  587.        installation or  after SCROLLit  has already been  installed. For
  588.        example, to  install SCROLLit with  a 100k buffer  and customized
  589.        color attributes for use during color mode 3, type:
  590.  
  591.             SCROLLit 100 /AC=20,27,2F,07
  592.  
  593.  
  594.                                                                        9
  595.  
  596.  
  597.        Customizing SCROLLit - Changing the Hotkey
  598.  
  599.        By default, SCROLLit uses the Scroll Lock key  as the hotkey, but
  600.        this can be changed with the /H=skk command line paramater, where
  601.        s is a single digit hexidecimal SHIFT code and kk is a  two digit
  602.        hexidecimal  KEY  code  (see  below).  For  example,  to  install
  603.        SCROLLit with a 100k buffer and "Alt-Space" as the hotkey type:
  604.  
  605.              SCROLLit 100 /h=839
  606.  
  607.  
  608.        Single Digit SHIFT code
  609.        -----------------------------------------------------------
  610.        Alt                                  *  *  *  *  *  *  *  *
  611.        Ctrl                     *  *  *  *              *  *  *  *      
  612.        Left Shift         *  *        *  *        *  *        *  *
  613.        Right Shift     *     *     *     *     *     *     *     *
  614.        -----------------------------------------------------------
  615.        SHIFT code:  0  1  2  3  4  5  6  7  8  9  A  B  C  D  E  F 
  616.  
  617.  
  618.        Two Digit KEY Code
  619.        ---------------------------------------------------------------
  620.                   Hex     |               Hex     |               Hex
  621.        Key        Code    |  Key          Code    | Key           Code
  622.        ===============================================================
  623.        Esc         01     |  A             1E     |  F1             3B
  624.        !1          02     |  S             1F     |  F2             3C
  625.        @2          03     |  D             20     |  F3             3D
  626.        #3          04     |  F             21     |  F4             3E
  627.        $4          05     |  G             22     |  F5             3F
  628.        %5          06     |  H             23     |  F6             40
  629.        ^6          07     |  J             24     |  F7             41
  630.        &7          08     |  K             25     |  F8             42
  631.        *8          09     |  L             26     |  F9             43
  632.        (9          0A     |  :;            27     |  F10            44
  633.        )0          0B     |  "'            28     |  NumLock        45
  634.        _-          0C     |  ~`            29     |  ScrollLock     46
  635.        +=          0D     |  Left Shift    2A     |  7 Home         47
  636.        Backspace   0E     |  |\            2B     |  8 UpArrow      48
  637.        Tab         0F     |  Z             2C     |  9 PgUp         49
  638.        Q           10     |  X             2D     |  - (grey)       4A
  639.        W           11     |  C             2E     |  4 Left Arrow   4B
  640.        E           12     |  V             2F     |  5 (keypad)     4C
  641.        R           13     |  B             30     |  6 Right Arrow  4D
  642.        T           14     |  N             31     |  + (grey)       4E
  643.        Y           15     |  M             32     |  1 End          4F
  644.        U           16     |  <,            33     |  2 Down Arrow   50
  645.        I           17     |  >.            34     |  3 PgDn         51
  646.        O           18     |  ?/            35     |  0 Ins          52
  647.        P           19     |  Right Shift   36     |  . Del          53
  648.        {[          1A     |  PrtSc *       37     |  F11            57
  649.        }]          1B     |  Alt           38     |  F12            58
  650.        Enter       1C     |  Spacebar      39     |
  651.        Ctrl        1D     |  Caps Lock     3A     |
  652.  
  653.  
  654.  
  655.                                                                       10
  656.  
  657.  
  658.        Appendix 1 - SCROLLit and Communications Software
  659.  
  660.  
  661.        SCROLLit can  be used  to scrollback through  your communications
  662.        session  provided you  configure your communications  software to
  663.        use BIOS screen scrolling rather than direct screen writing. 
  664.  
  665.        Qmodem scrolls the screen using direct screen writing by default,
  666.        but allows  BIOS scrolling by  setting the 'Jump  scroll' option.
  667.        Press Alt-N / Video / Toggles / Jump scroll.
  668.  
  669.        Telix also  scrolls  the screen  uses  direct screen  writing  by
  670.        default,  but  will use  the BIOS  for  all video  activity (both
  671.        scrolling and  writing characters  to the  screen) when  the BIOS
  672.        option is set.  Press Alt-O /  Screen / ScreenWrite  / Bios.  The
  673.        Status line should not  be configured for the top  of the screen.
  674.        It can be set to the bottom of the screen or disabled by pressing
  675.        Alt-O / Terminal / D-Status Line / None or Bottom.
  676.  
  677.        Procomm Plus uses BIOS scrolling with no option for direct screen
  678.        writing.  No  reconfiguring  is required.  The  shareware Procomm
  679.        Version  2.4.3 also uses BIOS  scrolling. There is  an option for
  680.        direct screen  writing, but  it does  not effect  scrolling (only
  681.        writing characters  to the screen). No  reconfiguring is required
  682.        for SCROLLit to  capture scrolled output  from either Procomm  or
  683.        Procomm Plus.
  684.  
  685.        SCROLLit  has  a  wider range  of  features  than the  scrollback
  686.        buffers  built  into  these  communications  packages (i.e.  full
  687.        color, string search,  block-writing, compression).  Furthermore,
  688.        when  you use  SCROLLit, your  entire session  is saved  until it
  689.        scrolls off  the top  of the buffer,  while the  lines stored  in
  690.        built-in scrollback buffers are lost  when you exit the  program.
  691.        You  can use an external scrollback program such as SCROLLit just
  692.        as  you   can  use  external  protocol  drivers  to  augment  the
  693.        capabilities of your communications software.
  694.  
  695.        Special Note for Compuserve Users
  696.  
  697.        Compuserve sessions can  be set for line-oriented mode, where old
  698.        output  scrolls off the top  of the screen,  or for page-oriented
  699.        mode,  where Compuserve sends  a page  of information,  and after
  700.        your response, clears the page before transmitting the next page.
  701.  
  702.        In page-oriented mode, the screen  is never scrolled, so SCROLLit
  703.        intercepts the  'clear-screen' requests in order  to capture your
  704.        past output.
  705.  
  706.        SCROLLit will  capture your  Compuserve session whether  you have
  707.        set a  line-oriented or  a page-oriented  terminal type.  You can
  708.        change from one mode to another by typing SET TERMINAL.
  709.  
  710.  
  711.  
  712.  
  713.  
  714.  
  715.  
  716.                                                                       11
  717.  
  718.  
  719.        Appendix 2 - Using SCROLLit with Desqview
  720.  
  721.  
  722.        SCROLLit is Desqview  aware and can be successfully loaded within
  723.        a Desqview window. SCROLLit will detect that it is operating in a
  724.        Desqview window and will capture scrolled lines from the Desqview
  725.        video buffer rather than the hardware video buffer. 
  726.  
  727.        SCROLLit must be installed  within a Desqview window in  order to
  728.        capture  scrolling  within  Desqview.  You may  want  to  install
  729.        SCROLLit and the DVANSI  driver in your DOS window,  for example.
  730.        The easiest way to  do this is by  setting up a small  batch file
  731.        with the following two lines:
  732.  
  733.             DVANSI
  734.             SCROLLit 100
  735.  
  736.        If you called this  file, say, mydos.bat, then you  would specify
  737.        mydos  in  the  program field  in  CP  (Change  a Program).  Then
  738.        whenever  you  opened  this  particular  window,  Desqview  would
  739.        execute  this  batch file,  loading  both  your  ansi driver  and
  740.        SCROLLit.
  741.  
  742.        Normally,  SCROLLit would only allow one copy of itself in memory
  743.        at one time (attempting to load a second  copy yields an 'Already
  744.        installed' message).  The one exception to this rule is Desqview,
  745.        where it  is  possible  to have  one  copy of  SCROLLit  in  each
  746.        Desqview window. (Trying to  load two copies in one  window will,
  747.        of course, produce the 'Already installed' message.)
  748.  
  749.        Desqview Optimization
  750.  
  751.        SCROLLit gives up it's time slice during idle periods in order to
  752.        optimize the performance of other Desqview windows. 
  753.  
  754.        By  default,  SCROLLit hooks  the  timer  interrupt in  order  to
  755.        provide a timeout feature and to allow the program to  popup in a
  756.        wide variety of  situations. Most  TSR's hook the  timer in  this
  757.        way. However, upon  detecting the timer hook, Desqview  will wait
  758.        one extra  timer tick before giving  up the time slice  to ensure
  759.        that the timer  itself is serviced. As  a result, any program  or
  760.        TSR that hooks the timer interrupt (either hardware interrupt 08h
  761.        or software interrupt  1Ch) will reduce  the performance of  your
  762.        other Desqview  windows. To fully optimize  Desqview performance,
  763.        SCROLLit should by  installed with the /NT  (for NoTimer) command
  764.        line switch which allows installation without the timer hook (the
  765.        BIOS  keyboard  interrupt is  hooked  instead).  For example,  to
  766.        install SCROLLit with a 100k buffer and no timer hook, type: 
  767.  
  768.             SCROLLIT 100 /NT
  769.  
  770.        Without  a  timer  hook,  there  will  be  some  situations where
  771.        SCROLLit will not be able to popup. Users will have to experiment
  772.        with this option to determine if this is inconvenient.
  773.  
  774.  
  775.  
  776.  
  777.                                                                       12
  778.  
  779.  
  780.        Appendix 3 - SCROLLit Command Line Options
  781.  
  782.  
  783.        nnn       Scrollback buffer  size in kilobytes. Must  be at least
  784.                  20k.
  785.  
  786.        /E        Use EMS  memory for scrollback buffer  storage, even if
  787.                  XMS is available.
  788.  
  789.        /C        Use  conventional memory for scrollback buffer storage,
  790.                  even if XMS or EMS is available.
  791.  
  792.        /N=       Specify  your  name  as  given  for  registration.  Use
  793.                  underscores instead of spaces  as in John_P._Doe.  Case
  794.                  insensitive.
  795.  
  796.        /K=       Specify the  eight character registration  key that  is
  797.                  sent upon registration. Case insensitive.
  798.  
  799.        /H=       Select alternate hotkey.
  800.  
  801.        /AC=      Select color attributes for color video mode 3.
  802.  
  803.        /AM=      Select color attributes for mono video mode 7.
  804.  
  805.        /NT       Install  SCROLLit   without  hooking  the   timer  (for
  806.                  Desqview users).
  807.  
  808.        /-        Temporarily disable screen capture.
  809.  
  810.        /+        Re-enable screen capture.
  811.  
  812.        /R        Information on how to register.
  813.  
  814.        /?        Display command line summary.
  815.  
  816.        /U        Attempt to unload SCROLLit from memory. Will not unload
  817.                  if other TSR's were loaded after SCROLLit.
  818.  
  819.  
  820.  
  821.  
  822.  
  823.  
  824.  
  825.  
  826.  
  827.  
  828.  
  829.  
  830.  
  831.  
  832.  
  833.  
  834.  
  835.  
  836.  
  837.  
  838.                                                                       13
  839.  
  840.  
  841.                                Technical Support
  842.  
  843.  
  844.        If  you  have questions,  problems,  or ideas  for  new features,
  845.        please contact Bromfield Software Products  by postal mail to our
  846.        Ottawa address  or  via Compuserve  electronic  mail to  User  ID
  847.        71054,3051.
  848.  
  849.  
  850.  
  851.  
  852.                                 Acknowledgements
  853.  
  854.  
  855.        SCROLLit   was  originally  created   to  provide   a  scrollback
  856.        capability for a number of different  software products developed
  857.        by  Bromfield Software  Products. With  the shareware  release we
  858.        have  received useful  feedback  from  SCROLLit users  throughout
  859.        Canada, the United States, and around the world. We wish to thank
  860.        all users who have sent us reports of possible  bugs and provided
  861.        ideas for useful  new features. Special thanks to  those SCROLLit
  862.        users  that have taken the time to  help with beta testing of new
  863.        versions: Phil Webb, Jim  McKeown, Laurent Dube, Karl Schopmeyer,
  864.        George Havach, Christian Burger, Gary MacDonald, Prof. Timo Salmi
  865.        (of the University of Vaasa, Finland), Bruce Judd, Bruce  Francis
  866.        and Tony Gozdz.  We would also like to thank  all those that have
  867.        supported  the shareware  concept  by registering  their copy  of
  868.        SCROLLit.
  869.  
  870.  
  871.  
  872.  
  873.                                    Disclaimer
  874.  
  875.  
  876.        Use  of this  program acknowledges  this disclaimer  of warranty:
  877.        "This  program is  supplied  as is.  Bromfield Software  Products
  878.        disclaims all warranties, express or implied, including,  without
  879.        limitation, the  warranties of merchantability and  of fitness of
  880.        this program for any purpose. Bromfield Software Products assumes
  881.        no  liability  for damages  direct  or  consequential, which  may
  882.        result from the use of this program."
  883.  
  884.  
  885.  
  886.  
  887.                                    Trademarks
  888.  
  889.  
  890.        All trademarks and copyrights belong to their respective holders.
  891.  
  892.  
  893.  
  894.  
  895.  
  896.  
  897.  
  898.  
  899.                                                                       14
  900.